home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / x11 / strategy / xpuzzles.3 / xpuzzles / xpuzzles-5.3.1 / xdino / Dino2dP.h < prev    next >
C/C++ Source or Header  |  1996-04-02  |  2KB  |  75 lines

  1. /*
  2. # X-BASED DINOSAUR CUBE
  3. #
  4. #  Dino2dP.h
  5. #
  6. ###
  7. #
  8. #  Copyright (c) 1995 - 96    David Albert Bagley, bagleyd@hertz.njit.edu
  9. #
  10. #                   All Rights Reserved
  11. #
  12. #  Permission to use, copy, modify, and distribute this software and
  13. #  its documentation for any purpose and without fee is hereby granted,
  14. #  provided that the above copyright notice appear in all copies and
  15. #  that both that copyright notice and this permission notice appear in
  16. #  supporting documentation, and that the name of the author not be
  17. #  used in advertising or publicity pertaining to distribution of the
  18. #  software without specific, written prior permission.
  19. #
  20. #  This program is distributed in the hope that it will be "playable",
  21. #  but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  23. #
  24. */
  25.  
  26. /* Private header file for Dino2d */
  27.  
  28. #ifndef _Dino2dP_h
  29. #define _Dino2dP_h
  30.  
  31. #include "Dino2d.h"
  32.  
  33. #define FRONTLOC 0
  34. #define BACKLOC 11
  35. #define COORD2D 8
  36. #define MAXX 3
  37. #define MAXY 4
  38. #define MAXXY 4 /* (MAX(MAXX,MAXY)) */
  39. #define MAXRECT (MAXX*MAXY)
  40.  
  41. typedef struct _Dino2DPart
  42. {
  43.   Position diamondLength, triangleLength, triangleWidth;
  44.   Position faceLength;
  45.   Position viewLength;
  46. } Dino2DPart;
  47.  
  48. typedef struct _Dino2DRec
  49. {
  50.   CorePart core;
  51.   DinoPart dino;
  52.   Dino2DPart dino2d;
  53. } Dino2DRec;
  54.  
  55. /* This gets around C's inability to do inheritance */
  56. typedef struct _Dino2DClassPart
  57. {
  58.   int ignore;
  59. } Dino2DClassPart;
  60.  
  61. typedef struct _Dino2DClassRec
  62. {
  63.   CoreClassPart coreClass;
  64.   DinoClassPart dinoClass;
  65.   Dino2DClassPart dino2dClass;
  66. } Dino2DClassRec;
  67.  
  68. extern Dino2DClassRec dino2dClassRec;
  69.  
  70. extern int SelectPolyhedrons2D();
  71. extern int NarrowSelection2D();
  72. extern void DrawTriangle2D();
  73.  
  74. #endif /* _Dino2dP_h */
  75.